home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mint110s / types.h < prev    next >
C/C++ Source or Header  |  1993-08-16  |  426b  |  24 lines

  1. /*
  2. Copyright 1990,1991,1992 Eric R. Smith. All rights reserved.
  3. */
  4.  
  5. #ifndef _types_h
  6. #define _types_h
  7.  
  8. #ifndef dLibs
  9. typedef unsigned long     ulong;
  10. typedef unsigned short    ushort;
  11. typedef unsigned char    uchar;
  12. #endif
  13.  
  14. typedef long ARGS_ON_STACK (*Func)();
  15.  
  16. /* structure used to hold i/o buffers */
  17. typedef struct io_rec {
  18.     char *bufaddr;
  19.     short buflen, head, tail, low_water, hi_water;
  20. } IOREC_T;
  21.  
  22.  
  23. #endif
  24.